diff --git a/Dockerfile.env b/Dockerfile.env index 4ec8464..314b0e5 100644 --- a/Dockerfile.env +++ b/Dockerfile.env @@ -1,5 +1,7 @@ FROM registry.labs.0x.no/env +USER root + RUN apk add --no-cache build-base COPY . /usr/local/fm @@ -7,5 +9,7 @@ COPY . /usr/local/fm RUN cd /usr/local/fm \ && yarn install \ && yarn cache clean + +USER ambrose CMD ["node", "/usr/local/fm/index.js"]