Initial commit: saint-malo navigation quiz
Build and Push Docker Image / build (push) Failing after 5m2s

This commit is contained in:
2026-06-11 10:04:44 +02:00
commit c3cc578d1c
10 changed files with 1861 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY server.js ./
COPY public/ ./public/
RUN mkdir -p data tiles
EXPOSE 4242
CMD ["node", "server.js"]