prozy-anywhere / Dockerfile
ka1kuk's picture
Upload 6 files
1f4041b
raw history blame
No virus
235 Bytes
FROM node:latest
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
# Expose port and start application
EXPOSE 8080
CMD [ "node", "server.js" ]