From d763f88cebdc777f8b02f6fac9d007ba0a1d8456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 1 May 2020 19:40:35 +0200 Subject: [PATCH] Remove comments --- backend/Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 1b297eb..5863801 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -5,20 +5,14 @@ apk add --no-cache npm python ffmpeg && \ apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ atomicparsley -# 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" ]