
* refactor: use healthcheck for db, remove postgresql client from main image * fix: redis dependency condition * cleanup entrypoint.sh * fix healthcheck command
11 lines
183 B
Docker
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
|