FROM node:alpine EXPOSE 80 WORKDIR /app USER nobody COPY ./app.js ./.key ./ ENTRYPOINT [ "node" ] CMD [ "app.js" ]