Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattholy committed Feb 5, 2024
1 parent 6d8cd48 commit 32d2f12
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ COPY service/frontend/wand-zero/ .
RUN npm run build

# Stage 02 - Build FastAPI Application
FROM python:3.12-alpine as fastapi-builder
FROM python:3.12 as fastapi-builder
WORKDIR /app

# Installing Poetry
RUN apk add --no-cache curl && \
curl -sSL https://install.python-poetry.org | python3 - && \
RUN curl -sSL https://install.python-poetry.org | python3 - && \
ln -s $HOME/.local/bin/poetry /usr/local/bin/poetry

# Copying the Python project files
Expand Down

0 comments on commit 32d2f12

Please sign in to comment.