Add support for docker & docker compose

This commit is contained in:
Ketan Padegaonkar
2024-06-11 18:42:01 +05:30
parent c6934214b4
commit e7824de7e8
5 changed files with 77 additions and 0 deletions

8
docker/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:lts-alpine
COPY --from=ghcr.io/ufoscout/docker-compose-wait:latest /wait /wait
ADD ./ /app
WORKDIR /app
RUN npm install
EXPOSE 8080