Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorpela committed Mar 2, 2024
1 parent 9121bc7 commit 4c6ba7b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ COPY ./backend .
# Copy the frontend build
COPY --from=builder /frontend/dist ./ui

# Run your application
ENTRYPOINT [ "uvicorn", "app.server:app", "--host", "0.0.0.0" ]
3 changes: 1 addition & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ COPY pyproject.toml poetry.lock* ./
RUN poetry config virtualenvs.create false \
&& poetry install --no-interaction --no-ansi --no-dev

# Copy the rest of your application code
# Copy the rest of application code
COPY . .

# Run your application
ENTRYPOINT [ "uvicorn", "app.server:app", "--host", "0.0.0.0" ]

0 comments on commit 4c6ba7b

Please sign in to comment.