Moved docker files to backend

This commit is contained in:
Isaac Grynsztein
2020-04-15 02:02:14 -04:00
parent 0d54cb9872
commit 90c2d3f70b
2 changed files with 0 additions and 0 deletions

View File

@@ -1,21 +0,0 @@
FROM alpine:3.11
RUN apk add --update npm python ffmpeg
# Change directory so that our commands run inside this new directory
WORKDIR /app
# Copy dependency definitions
COPY ./ /app/
# Change directory to backend
WORKDIR /app
# Install dependencies on backend
RUN npm install
# Expose the port the app runs in
EXPOSE 17442
# Run the specified command within the container.
CMD [ "node", "app.js" ]