diff --git a/packages/marketplace_server/Dockerfile b/packages/marketplace_server/Dockerfile new file mode 100755 index 00000000..95bfb6b1 --- /dev/null +++ b/packages/marketplace_server/Dockerfile @@ -0,0 +1,22 @@ +FROM node:16-bullseye-slim + +RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list + +RUN apt update +RUN apt install --no-install-recommends curl python yarn -y + +RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app + +WORKDIR /home/node/app +USER node + +EXPOSE 3010 + +COPY package.json ./ +COPY --chown=node:node . . + +RUN chmod -R 777 /home/node/app +RUN yarn install +RUN yarn build + +CMD ["node", "/home/node/app/dist/index.js"] \ No newline at end of file