Skip to content

Commit 8d7a8f3

Browse files
path correction
1 parent ebb856c commit 8d7a8f3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
- name: Build and Push Docker Image (Multi-Arch)
7171
uses: docker/build-push-action@v5
7272
with:
73-
context: ./dockflare
73+
context: .
74+
file: ./dockflare/Dockerfile
7475
# Build for multiple architectures
7576
platforms: linux/amd64 #,linux/arm64 # Enable multi-architecture builds
7677
# Push only on direct pushes to stable or unstable branches

dockflare/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ COPY requirements.txt .
5858
RUN pip install --no-cache-dir -r requirements.txt
5959
COPY --from=frontend-builder /usr/src/frontend_build/app/static/css/output.css /app/static/css/output.css
6060
COPY ./app /app
61-
COPY ../images /app/static/images/
61+
COPY ./images /app/static/images/
6262
EXPOSE 5000
6363
CMD ["python", "main.py"]

0 commit comments

Comments
 (0)