From 81923312f2675eeb55ecda2c86678e022a93afb9 Mon Sep 17 00:00:00 2001 From: xbdm Date: Fri, 14 Jul 2023 21:16:11 +0000 Subject: [PATCH] Delete 'docker/Dockerfile' --- docker/Dockerfile | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 docker/Dockerfile diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index 754a655..0000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -# Multi-stage -# 1) Node image for building frontend assets -# 2) nginx stage to serve frontend assets - -# Name the node stage "builder" -FROM docker.io/node:16 AS builder -# Set working directory -WORKDIR /app - -ENV SAFETWITCH_BACKEND_DOMAIN SAFETWITCH_BACKEND_DOMAIN_PLACEHOLDER -ENV SAFETWITCH_INSTANCE_DOMAIN SAFETWITCH_INSTANCE_DOMAIN_PLACEHOLDER -ENV SAFETWITCH_HTTPS SAFETWITCH_HTTPS_PLACEHOLDER -# Copy all files from current directory to working dir in image -COPY . . -# install node modules and build assets -RUN npm i && npm run build - -# nginx state for serving content -FROM docker.io/nginx:alpine -COPY ./nginx.conf /etc/nginx/nginx.conf -# Set working directory to nginx asset directory -RUN mkdir /app -# Copy static assets from builder stage -COPY --from=builder /app/dist /app -# Containers run nginx with global directives and daemon off -EXPOSE 80 - -# Overriding the default NGINX container behavior -COPY ./substitute_environment_variables.sh ./substitute_environment_variables.sh -RUN chmod +x /substitute_environment_variables.sh -ENTRYPOINT ["/substitute_environment_variables.sh"] \ No newline at end of file