diff --git a/.github/workflows/steamcmd.yml b/.github/workflows/steamcmd.yml index f1282a2..6b76125 100644 --- a/.github/workflows/steamcmd.yml +++ b/.github/workflows/steamcmd.yml @@ -33,7 +33,7 @@ jobs: password: ${{ secrets.REGISTRY_TOKEN }} - uses: docker/build-push-action@v3 with: - context: ./steamcmd/${{ matrix.distro }} + context: ./steamcmd file: ./steamcmd/${{ matrix.distro }}/Dockerfile platforms: linux/amd64 push: true diff --git a/steamcmd/debian/Dockerfile b/steamcmd/debian/Dockerfile index a0c3a57..dbabd78 100644 --- a/steamcmd/debian/Dockerfile +++ b/steamcmd/debian/Dockerfile @@ -23,5 +23,5 @@ USER container ENV USER=container HOME=/home/container WORKDIR /home/container -COPY ./entrypoint.sh /entrypoint.sh +COPY ./../entrypoint.sh /entrypoint.sh CMD [ "/bin/bash", "/entrypoint.sh" ] \ No newline at end of file diff --git a/steamcmd/dotnet/Dockerfile b/steamcmd/dotnet/Dockerfile index ae62a33..9f50d24 100644 --- a/steamcmd/dotnet/Dockerfile +++ b/steamcmd/dotnet/Dockerfile @@ -30,5 +30,5 @@ USER container ENV USER=container HOME=/home/container WORKDIR /home/container -COPY ./../entrypoint.sh /entrypoint.sh -CMD ["/bin/bash", "/entrypoint.sh"] +COPY ./../entrypoint.sh /entrypoint.sh +CMD [ "/bin/bash", "/entrypoint.sh" ] diff --git a/steamcmd/ubuntu/Dockerfile b/steamcmd/ubuntu/Dockerfile index f4477a8..00244dc 100644 --- a/steamcmd/ubuntu/Dockerfile +++ b/steamcmd/ubuntu/Dockerfile @@ -25,5 +25,5 @@ USER container ENV USER=container HOME=/home/container WORKDIR /home/container -COPY ./entrypoint.sh /entrypoint.sh +COPY ./../entrypoint.sh /entrypoint.sh CMD [ "/bin/bash", "/entrypoint.sh" ] \ No newline at end of file