Skip to content

Commit

Permalink
Merge pull request #165 from zeabur/pan93412/ZEA-2058
Browse files Browse the repository at this point in the history
refactor(planner/python): remove debian image constraint in python planner
  • Loading branch information
yuaanlin authored Oct 24, 2023
2 parents 82726a6 + 12454a2 commit 2e36b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/python/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func GenerateDockerfile(meta types.PlanMeta) (string, error) {
aptDeps := meta["apt-deps"]
staticMeta := staticInfoFromMeta(meta)

dockerfile := "FROM docker.io/library/python:" + meta["pythonVersion"] + "-slim-bookworm\n"
dockerfile := "FROM docker.io/library/python:" + meta["pythonVersion"] + "-slim\n"

if staticMeta.NginxEnabled() {
dockerfile += `WORKDIR /app
Expand Down

0 comments on commit 2e36b19

Please sign in to comment.