We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffd1b0 commit 9fe7debCopy full SHA for 9fe7deb
Dockerfile renamed to docker/Dockerfile
@@ -1,7 +1,7 @@
1
FROM python:3.8-slim-buster
2
3
WORKDIR pypfopt
4
-COPY pyproject.toml poetry.lock ./
+COPY ../pyproject.toml ../poetry.lock ./
5
6
RUN buildDeps='gcc g++' && \
7
apt-get update && apt-get install -y $buildDeps --no-install-recommends && \
@@ -10,7 +10,7 @@ RUN buildDeps='gcc g++' && \
10
poetry install -E optionals --no-root && \
11
apt-get purge -y --auto-remove $buildDeps
12
13
-COPY . .
+COPY ../. .
14
15
# Usage examples:
16
#
0 commit comments