Browse Source

Use latest python alpine docker image for build and production

pull/230/head
Tim 5 years ago
parent
commit
8dfee259d6
No known key found for this signature in database GPG Key ID: B6C50F87ED7CD125
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Dockerfile

+ 2
- 2
Dockerfile View File

@ -2,7 +2,7 @@ ARG BUILD_DATE
# First stage # First stage
FROM python:3.8-rc-alpine as builder
FROM python:alpine as builder
# Install deps # Install deps
COPY requirements.txt /tmp COPY requirements.txt /tmp
@ -18,7 +18,7 @@ RUN pip install --prefix="/install" --no-warn-script-location -r /tmp/requiremen
## Second stage ## Second stage
FROM python:3.8-rc-alpine
FROM python:alpine
ENV DEBUG False ENV DEBUG False
ENV DB_NAME /data/hc.sqlite ENV DB_NAME /data/hc.sqlite


Loading…
Cancel
Save