Files
automatisch/docker/Dockerfile
ksurl 9ba1351a3b refactor: use healthcheck for db, remove psql client from image (#737)
* refactor: use healthcheck for db, remove postgresql client from main image

* fix: redis dependency condition

* cleanup entrypoint.sh

* fix healthcheck command
2022-11-22 01:18:05 +01:00

11 lines
183 B
Docker

# syntax=docker/dockerfile:1
FROM node:16
WORKDIR /automatisch
COPY ./entrypoint.sh /entrypoint.sh
RUN yarn global add @automatisch/cli@0.2.0
EXPOSE 3000
ENTRYPOINT /entrypoint.sh