diff --git a/.github/workflows/cd-workflow.yml b/.github/workflows/cd-workflow.yml index a8eb377..a48027b 100644 --- a/.github/workflows/cd-workflow.yml +++ b/.github/workflows/cd-workflow.yml @@ -59,7 +59,7 @@ jobs: name: webpack artifacts path: public - name: Build container image - uses: docker/build-push-action@v1 + uses: docker/build-push-action@v2 with: username: ${{github.actor}} password: ${{secrets.GITHUB_TOKEN}} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6086068 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +# Your Dockerfile contents go here! +FROM nginx:1.17 +COPY . /usr/share/nginx/html +