Skip to content

Commit 9fe7deb

Browse files
committed
Move Dockerfile
1 parent 7ffd1b0 commit 9fe7deb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile renamed to docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.8-slim-buster
22

33
WORKDIR pypfopt
4-
COPY pyproject.toml poetry.lock ./
4+
COPY ../pyproject.toml ../poetry.lock ./
55

66
RUN buildDeps='gcc g++' && \
77
apt-get update && apt-get install -y $buildDeps --no-install-recommends && \
@@ -10,7 +10,7 @@ RUN buildDeps='gcc g++' && \
1010
poetry install -E optionals --no-root && \
1111
apt-get purge -y --auto-remove $buildDeps
1212

13-
COPY . .
13+
COPY ../. .
1414

1515
# Usage examples:
1616
#

0 commit comments

Comments
 (0)