42 lines
1.2 KiB
Docker
42 lines
1.2 KiB
Docker
FROM node:20 as builder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
# TODO: Remove this or review embedded variables
|
|
COPY .env .env
|
|
|
|
# First generate package-lock.json if it doesn't exist, then do clean install
|
|
RUN if [ ! -f package-lock.json ]; then npm install --package-lock-only; fi && npm ci
|
|
COPY . .
|
|
# Run build with production mode
|
|
RUN npm run build -- --mode production
|
|
|
|
FROM nginx:alpine
|
|
# Copy built files
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
|
|
# Create a simple nginx configuration
|
|
RUN echo 'server { \
|
|
listen 3000; \
|
|
root /usr/share/nginx/html; \
|
|
index index.html; \
|
|
location / { \
|
|
try_files $uri $uri/ /index.html; \
|
|
expires 30d; \
|
|
add_header Cache-Control "public, no-transform"; \
|
|
} \
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff2?)$ { \
|
|
expires 30d; \
|
|
add_header Cache-Control "public, no-transform"; \
|
|
} \
|
|
location ~ /\. { \
|
|
deny all; \
|
|
} \
|
|
error_page 404 /index.html; \
|
|
}' > /etc/nginx/conf.d/default.conf
|
|
|
|
# Set up permissions
|
|
RUN chown -R nginx:nginx /usr/share/nginx/html \
|
|
&& chown -R nginx:nginx /var/log/nginx
|
|
|
|
# Expose HTTP port (NPM will handle HTTPS)
|
|
EXPOSE 3000 |