Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM node:18-alpine as build-stage
FROM node:18-alpine AS build-stage

WORKDIR /app

Expand Down Expand Up @@ -28,7 +28,7 @@ ENV VITE_AWS_SECRET_ACCESS_KEY=${VITE_AWS_SECRET_ACCESS_KEY}
RUN npm run build

# Production stage
FROM nginx:alpine as production-stage
FROM nginx:alpine AS production-stage

# Copy built application
COPY --from=build-stage /app/dist /usr/share/nginx/html
Expand Down