Files
ETAApi/v2/Dockerfile
2024-08-05 15:56:23 -06:00

18 lines
359 B
Docker

# Use an official Python runtime as a parent image
FROM node:18-alpine
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY server /app/server
COPY package.json /app
COPY dotenv /app/.env
RUN apk add bash bash-completion vim
RUN npm install --include=dev
EXPOSE 3000
ENTRYPOINT npm start