Sinatra/Dockerfile
Alex Rennie-Lis db8458122f Fixed workdir
2024-06-06 23:04:10 +01:00

15 lines
237 B
Docker
Executable File

FROM node:20-alpine
COPY ./code /app
COPY ./config /config
RUN mkdir -p /data && \
apk --no-cache add curl
HEALTHCHECK CMD curl -f http://localhost:8088/health || exit 1
EXPOSE 8088
WORKDIR /data
CMD [ "node", "/app/index.js" ]