Skip to content

Commit

Permalink
ci: fix container building
Browse files Browse the repository at this point in the history
  • Loading branch information
xen0n committed Dec 30, 2024
1 parent 9519be5 commit e524c14
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# syntax=docker/dockerfile:1
FROM python:3.13-alpine3.20 AS builder

RUN pip install --no-binary dulwich -C "--build-option=--pure" poetry==1.8.4
# for building asyncmy on arm64
RUN apk update && apk add gcc

RUN pip install --no-binary dulwich -C "--build-option=--pure" poetry==1.8.5
ENV POETRY_NO_INTERACTION=1 \
POETRY_VIRTUALENVS_IN_PROJECT=1 \
POETRY_VIRTUALENVS_CREATE=1 \
Expand Down

0 comments on commit e524c14

Please sign in to comment.