Skip to content

Commit

Permalink
Update nginx
Browse files Browse the repository at this point in the history
  • Loading branch information
back-2-95 committed Nov 21, 2024
1 parent 761ed7b commit 2cd9d11
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ARG NGINX_VERSION
# syntax=docker/dockerfile:1

FROM nginx:${NGINX_VERSION}-alpine as base
ARG NGINX_VERSION=1.26

FROM nginx:${NGINX_VERSION}-alpine AS base

ENV BACKEND_SERVICE=app
ENV BACKEND_SERVICE_PORT=9000
Expand All @@ -9,7 +11,7 @@ ENV NGINX_PORT=8080
# Copy configuration files and scripts
COPY files/base/ /

FROM base as drupal
FROM base AS drupal

# Copy configuration files and scripts
COPY files/drupal/ /

0 comments on commit 2cd9d11

Please sign in to comment.