Skip to content

Commit 6f82cc2

Browse files
author
Yaroslav Voitenko
committed
feat(dockerize-app): add docker image, small enhancements
1 parent 05417f9 commit 6f82cc2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
env:
1212
REGISTRY: ghcr.io
1313
#IMAGE_NAME: ${{ github.repository }}
14-
IMAGE_NAME: justcoded/php-code-analysis
14+
IMAGE_NAME: justcoded/http-request-proxy
1515

1616
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
1717
jobs:
@@ -44,7 +44,7 @@ jobs:
4444
- name: Build and push Docker image
4545
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
4646
with:
47-
context: src/builds
47+
context: .
4848
push: true
4949
tags: ${{ steps.meta.outputs.tags }}
5050
labels: ${{ steps.meta.outputs.labels }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM php:8.3-cli
22

3-
COPY whp /bin/
3+
COPY src/builds/whp /bin/
44
RUN chmod +x /bin/whp
55

66
ENTRYPOINT ["/bin/whp"]

0 commit comments

Comments
 (0)