Skip to content

Commit

Permalink
Fix docker base image (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
moria97 authored Aug 9, 2024
1 parent 4f58f66 commit 6a6a2e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.11 AS builder

RUN pip3 install poetry

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_gpu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.11 AS builder

RUN pip3 install poetry

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_ui
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim AS builder
FROM python:3.11 AS builder

RUN pip3 install poetry

Expand Down

0 comments on commit 6a6a2e7

Please sign in to comment.