diff --git a/.yarnrc b/.yarnrc new file mode 100644 index 00000000..568d2455 --- /dev/null +++ b/.yarnrc @@ -0,0 +1 @@ +network-timeout 400000 diff --git a/docker/Dockerfile b/docker/Dockerfile index 2468dde2..12683b62 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,9 +2,13 @@ FROM node:16-alpine WORKDIR /automatisch +RUN apk --no-cache add --virtual build-dependencies python3 build-base + COPY ./entrypoint.sh /entrypoint.sh RUN yarn global add @automatisch/cli@0.3.0 +RUN apk del build-dependencies python3 build-base + EXPOSE 3000 ENTRYPOINT ["sh", "/entrypoint.sh"]