Files
khalil 83ed8f6876
CI/CD Pipeline / test (push) Successful in 8s
CI/CD Pipeline / build-push-deploy (push) Successful in 6s
chore: fix OCI source label URL to match canonical domain
2026-07-04 18:42:34 +00:00

9 lines
236 B
Docker

FROM node:20-alpine
LABEL org.opencontainers.image.source="https://git.khalilaliouich.com/khalil/tamagotchi-service"
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY server.js ./
EXPOSE 8080
CMD ["node", "server.js"]