diff --git a/Dockerfile b/Dockerfile index 9bdfc77..b6295fe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16-slim +FROM node:16-alpine WORKDIR /usr/local/src/app # Yarn install with dev dependencies @@ -17,5 +17,7 @@ RUN \ # Directory with build info (git commit sha, build date) COPY buildinfo* ./buildinfo +USER node + EXPOSE 3300 CMD ["yarn","start"]