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 3ac20e8 commit b36fef4Copy full SHA for b36fef4
deploy/Dockerfile.RUNTIME
@@ -7,13 +7,14 @@ LABEL Name=django-sspanel
7
WORKDIR /tmp
8
COPY pyproject.toml poetry.lock /tmp/
9
10
+RUN pip install -U pip
11
+
12
RUN apk add --update --no-cache mariadb-connector-c-dev tzdata \
13
&& apk add --no-cache --virtual .build-deps mariadb-dev libgcc gcc musl-dev libffi-dev libressl-dev make cargo \
14
# TODO workaround start
15
&& pip install --no-cache-dir poetry \
16
&& poetry config virtualenvs.create false \
17
&& poetry install --no-dev --no-interaction --no-ansi \
18
# TODO workaround end
- && apk del .build-deps \
19
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
20
&& echo "Asia/Shanghai" > /etc/timezone
0 commit comments