diff --git a/docs/Dockerfile b/docs/Dockerfile deleted file mode 100644 index 5e1108f..0000000 --- a/docs/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM ruby:3.3.4 - -ENV LC_ALL C.UTF-8 -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US.UTF-8 - -WORKDIR /usr/src/app - -COPY . ./ -RUN gem install bundler && bundle install - -EXPOSE 4000 \ No newline at end of file diff --git a/docs/docker-compose.yml b/docs/docker-compose.yml deleted file mode 100644 index 5ceb7d5..0000000 --- a/docs/docker-compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -services: - jekyll: - build: - context: ./ - ports: - - 4000:4000 - environment: - - JEKYLL_ENV=development - volumes: - - .:/usr/src/app - stdin_open: true - tty: true - command: bundle exec jekyll serve -H 0.0.0.0 -t \ No newline at end of file