Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-codin-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-codin-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-codin-lecture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-codin-ticketing-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-codin-ticketing-sse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion codin-lecture-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion codin-ticketing-sse/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down