Skip to content

Commit

Permalink
feat: run ls
Browse files Browse the repository at this point in the history
  • Loading branch information
vladyoslav committed Jun 21, 2024
1 parent 42f8465 commit bba88f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
id: push
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}:./"
context: "."
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ FROM python:3.12-slim-bullseye AS builder
ENV PYTHONUNBUFFERED=1

WORKDIR /app

RUN ls

RUN dir -s

COPY poetry.lock pyproject.toml ./

RUN python -m pip install --no-cache-dir poetry==1.8.2 \
Expand Down

0 comments on commit bba88f6

Please sign in to comment.