mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-10-13 05:35:15 +00:00
Fix Dockerfile for podman too (#583)
This commit is contained in:
@@ -8,7 +8,7 @@ ENV NODE_OPTIONS="--max-old-space-size=4096"
|
||||
RUN npm run build
|
||||
|
||||
# Stage 2: Setup the Nginx Server to serve the app
|
||||
FROM nginx:stable-alpine3.17 AS production
|
||||
FROM docker.io/library/nginx:stable-alpine3.17 AS production
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
RUN echo 'server { listen 80; server_name _; root /usr/share/nginx/html; location / { try_files $uri /index.html; } }' > /etc/nginx/conf.d/default.conf
|
||||
EXPOSE 80
|
||||
|
Reference in New Issue
Block a user