diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 23c1fa8..8bc9d1e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,14 +10,14 @@ jobs: build-server: runs-on: ubuntu-latest container: - image: refringe/spt-build-environment:1.0.2 + image: refringe/spt-build-environment:1.0.3 steps: - name: Checkout Server Project uses: actions/checkout@v4 with: repository: 'refringe/Server' - ref: 'v3.8.0-BE' + ref: '3.8.0-BE' fetch-depth: 0 lfs: true diff --git a/Dockerfile b/Dockerfile index 4f0309b..075e30c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,8 @@ RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -# Set the working directory to /code -WORKDIR /code - # Add a non-root user for running the build RUN useradd -m builder USER builder + +WORKDIR /workspace