ktvmanager/dockerfile
Karl 970ef214e4
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 21s
updated configs and workflow
2025-06-30 17:30:24 +01:00

18 lines
220 B
Plaintext
Executable File

FROM node:20-alpine
ARG VERSION
LABEL version=$VERSION
LABEL description="DNS BACKEND"
WORKDIR /app
COPY ["package.json", "package-lock.json", "./"]
RUN npm ci --force
COPY . .
EXPOSE 3001
CMD ["node", "bin/www"]