Skip to content

Commit 5344c34

Browse files
committed
chore: remove in-tree-build flag as it is the default now (fixes #19)
1 parent d43d181 commit 5344c34

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM python:3 AS builder
33
WORKDIR /code
44
COPY . .
5-
RUN pip install --user --no-cache-dir --use-feature=in-tree-build --no-warn-script-location .
5+
RUN pip install --user --no-cache-dir --no-warn-script-location .
66

77
# second stage
88
FROM python:3-slim

Dockerfile.buster

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM python:3.9-buster AS builder
33
WORKDIR /code
44
COPY . .
5-
RUN pip install --user --no-cache-dir --use-feature=in-tree-build --no-warn-script-location .
5+
RUN pip install --user --no-cache-dir --no-warn-script-location .
66

77
# second stage
88
FROM python:3.9-slim-buster

0 commit comments

Comments
 (0)