update .dockerignore and add libmagic dependency to alpine dockerbuild
This commit is contained in:
parent
5804abf2e7
commit
f5f8ef8429
2 changed files with 4 additions and 4 deletions
|
@ -3,8 +3,8 @@ images
|
|||
*.md
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
.config.json
|
||||
.config.json.sample
|
||||
config.json
|
||||
config.json.sample
|
||||
bot
|
||||
bot.log
|
||||
venv
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
FROM python:3.11-alpine as pybuilder
|
||||
RUN sed -i 's|v3\.\d*|edge|' /etc/apk/repositories
|
||||
RUN apk update && apk add --no-cache olm-dev gcc musl-dev tzdata
|
||||
RUN apk update && apk add olm-dev gcc musl-dev tzdata libmagic
|
||||
COPY requirements.txt /requirements.txt
|
||||
RUN pip3 install --user -r /requirements.txt && rm /requirements.txt
|
||||
|
||||
|
||||
FROM python:3.11-alpine as runner
|
||||
RUN apk update && apk add --no-cache olm-dev
|
||||
RUN apk update && apk add olm-dev libmagic
|
||||
COPY --from=pybuilder /root/.local /usr/local
|
||||
COPY --from=pybuilder /usr/share/zoneinfo /usr/share/zoneinfo
|
||||
COPY . /app
|
||||
|
|
Loading…
Reference in a new issue