feat: health check for backend in docker-compose;

feat: go dockerfile preinstalls curl;
refactor: reduced go image size by using a 2 stage dockerfile;
refactor: switch frontend dockerfile
This commit is contained in:
2025-06-17 21:34:55 +03:00
parent 367647a8df
commit b4746cf18f
4 changed files with 53 additions and 19 deletions

View File

@@ -1,16 +1,25 @@
FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
RUN npm run build
RUN npm prune --production
#Dockerfile
FROM node:18-alpine
# Use this image as the platform to build the app
FROM node:20.11-alpine AS external-website
# The WORKDIR instruction sets the working directory for everything that will happen next
WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/
COPY package.json .
EXPOSE 3000
ENV NODE_ENV=production
CMD [ "node", "build" ]
# Copy all local files into the image
COPY . .
# Clean install all node modules
RUN npm ci
# Build SvelteKit app
RUN npm run build
# Delete source code files that were used to build the app that are no longer needed
RUN rm -rf src/
# The USER instruction sets the user name to use as the default user for the remainder of the current stage
USER node:node
# This is the command that will be run inside the image when you tell Docker to start the container
CMD ["node","build/index.js"]