Proxy / Dockerfile
Pragatik771's picture
Upload Dockerfile
890cb91 verified
raw
history blame contribute delete
198 Bytes
FROM node:18
# Create app directory
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm install
# Copy source
COPY . .
# Expose port
EXPOSE 10000
# Start app
CMD ["npm", "start"]