Initial commit
TODO: change api.conf URL references to use environment variables and add these variables to the docker-compose configuration for host domain
This commit is contained in:
15
api/Dockerfile
Normal file
15
api/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
# 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" ]
|
||||
|
||||
Reference in New Issue
Block a user