All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 21s
19 lines
258 B
Plaintext
Executable File
19 lines
258 B
Plaintext
Executable File
FROM node:20-alpine
|
|
|
|
ARG VERSION
|
|
LABEL description="DNS BACKEND"
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ["package.json", "package-lock.json", "./"]
|
|
RUN npm ci --force
|
|
|
|
COPY . .
|
|
|
|
LABEL version=$VERSION
|
|
LABEL com.kt-manager.version=$VERSION
|
|
EXPOSE 3001
|
|
|
|
CMD ["node", "bin/www"]
|
|
|