diff --git a/.github/workflows/deploy-codin-auth.yml b/.github/workflows/deploy-codin-auth.yml index 284c66de..d4b85f66 100644 --- a/.github/workflows/deploy-codin-auth.yml +++ b/.github/workflows/deploy-codin-auth.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v4 - name: Sync docker-compose.yml to server - uses: appleboy/scp-action@v0.1.10 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} diff --git a/.github/workflows/deploy-codin-core.yml b/.github/workflows/deploy-codin-core.yml index ab743eb8..e8835b45 100644 --- a/.github/workflows/deploy-codin-core.yml +++ b/.github/workflows/deploy-codin-core.yml @@ -54,7 +54,7 @@ jobs: uses: actions/checkout@v4 - name: Sync docker-compose.yml to server - uses: appleboy/scp-action@v0.1.10 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} diff --git a/.github/workflows/deploy-codin-lecture.yml b/.github/workflows/deploy-codin-lecture.yml index 01de7ff1..d504fd28 100644 --- a/.github/workflows/deploy-codin-lecture.yml +++ b/.github/workflows/deploy-codin-lecture.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@v4 - name: Sync docker-compose.yml to server - uses: appleboy/scp-action@v0.1.10 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} diff --git a/.github/workflows/deploy-codin-ticketing-api.yml b/.github/workflows/deploy-codin-ticketing-api.yml index c0b506c9..f2c94acb 100644 --- a/.github/workflows/deploy-codin-ticketing-api.yml +++ b/.github/workflows/deploy-codin-ticketing-api.yml @@ -49,7 +49,7 @@ jobs: uses: actions/checkout@v4 - name: Sync docker-compose.yml to server - uses: appleboy/scp-action@v0.1.10 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} diff --git a/.github/workflows/deploy-codin-ticketing-sse.yml b/.github/workflows/deploy-codin-ticketing-sse.yml index f910fa0b..f091b988 100644 --- a/.github/workflows/deploy-codin-ticketing-sse.yml +++ b/.github/workflows/deploy-codin-ticketing-sse.yml @@ -49,7 +49,7 @@ jobs: uses: actions/checkout@v4 - name: Sync docker-compose.yml to server - uses: appleboy/scp-action@v0.1.10 + uses: appleboy/scp-action@v1.0.0 with: host: ${{ secrets.HOST }} username: ${{ secrets.USERNAME }} diff --git a/codin-lecture-api/Dockerfile b/codin-lecture-api/Dockerfile index 75364b2a..a6dc857b 100644 --- a/codin-lecture-api/Dockerfile +++ b/codin-lecture-api/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17-jdk-slim +FROM eclipse-temurin:17-jdk-jammy RUN apt-get update && apt-get install -y --no-install-recommends python3 python3-pip RUN pip3 install pymysql pandas openpyxl python-dotenv WORKDIR /app diff --git a/codin-ticketing-sse/Dockerfile b/codin-ticketing-sse/Dockerfile index 7d3d72e5..b44cc23a 100644 --- a/codin-ticketing-sse/Dockerfile +++ b/codin-ticketing-sse/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17-jdk-slim +FROM eclipse-temurin:17-jre-alpine WORKDIR /app COPY build/libs/codin-ticketing-sse-0.0.1-SNAPSHOT.jar app.jar EXPOSE 8084