From 081c5b0d9520be4d6112340f7d731ab3b48be27a Mon Sep 17 00:00:00 2001 From: Kacper Paczos Date: Tue, 17 Oct 2023 21:53:31 +0200 Subject: [PATCH] I fixed Dockerfile build, I created docker-compose file for easier developing --- Dockerfile | 4 ++-- docker-compose.yml | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 docker-compose.yml diff --git a/Dockerfile b/Dockerfile index d2f10734..d12e6369 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ ARG RUBY_VERSION -FROM docker.io/library/ruby:$RUBY_VERSION AS build +FROM ruby:${RUBY_VERSION} AS build WORKDIR /builddir COPY . . RUN bundle install --deployment RUN bundle exec middleman build -FROM docker.io/nginxinc/nginx-unprivileged:stable +FROM nginxinc/nginx-unprivileged COPY --from=build /builddir/build /srv/http/ ADD nginx.conf /etc/nginx/conf.d/default.conf diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..4429dd43 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3.7' +services: + rugby: + network_mode: "host" + container_name: rugby + restart: always + build: + context: ./ + dockerfile: Dockerfile + args: + RUBY_VERSION: 3.0.4