We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e290eb7 commit cbe961fCopy full SHA for cbe961f
Dockerfile
@@ -0,0 +1,6 @@
1
+FROM ruby:3.0
2
+WORKDIR /code
3
+EXPOSE 4000
4
+COPY . .
5
+RUN bundle install
6
+CMD bundle exec jekyll serve -H 0.0.0.0
docker-compose.yml
@@ -0,0 +1,8 @@
+version: "3"
+services:
+ web:
+ build: .
+ ports:
+ - "4000:4000"
7
+ volumes:
8
+ - .:/code
0 commit comments