world-x / Dockerfile
hui4's picture
Create Dockerfile
810308d verified
raw
history blame contribute delete
195 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 7860
CMD [ "node", "app.js" ]