diff --git a/Dockerfile.dev b/Dockerfile.dev index 7e55d6008..725d6e3fd 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -11,7 +11,7 @@ WORKDIR /app RUN pip install -r requirements.txt -# COPY ./mealie /app +COPY ./mealie /app ENTRYPOINT [ "python" ] diff --git a/frontend/frontend.Dockerfile b/frontend/frontend.Dockerfile index 2cdab5876..92f6eed1b 100644 --- a/frontend/frontend.Dockerfile +++ b/frontend/frontend.Dockerfile @@ -13,7 +13,7 @@ COPY package*.json ./ RUN npm install # copy project files and folders to the current working directory (i.e. 'app' folder) -# COPY . . +COPY . . # build app for production with minification # RUN npm run build