Files
IndigoFox 9f2473801c Initial commit
TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
2023-03-28 00:08:50 -07:00

16 lines
203 B
Docker

# nodejs container
FROM node:latest
# Create app directory
WORKDIR /app
# Bundle app source
# COPY . /app
# Install app dependencies
# RUN npm install
EXPOSE $API_PORT
CMD [ "npm", "run", "start" ]