Dockerfile

This commit is contained in:
Braydon 2024-06-19 22:06:10 -04:00
parent ef1fa30b45
commit fce9b8c9fd
2 changed files with 57 additions and 0 deletions

@ -0,0 +1,35 @@
name: Deploy
on:
push:
branches: ["master"]
paths: [".gitea/workflows/deploy.yml", "!README.md"]
jobs:
docker:
strategy:
matrix:
java-version: ["17"]
maven-version: ["3.8.5"]
runs-on: "ubuntu-latest"
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
# Setup Java and Maven
- name: Set up JDK and Maven
uses: s4u/setup-maven-action@v1.12.0
with:
java-version: ${{ matrix.java-version }}
distribution: "zulu"
maven-version: ${{ matrix.maven-version }}
# Deploy to Dokku
- name: Deploy to Dokku
uses: dokku/github-action@master
with:
git_remote_url: "ssh://dokku@10.10.3.28:22/textpurify-api"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}

22
API/Dockerfile Normal file

@ -0,0 +1,22 @@
FROM maven:3.8.5-openjdk-17-slim
# Set the working directory
WORKDIR /home/container
# Copy project files
COPY . .
# Build the app
RUN mvn clean package -q -DskipTests -T4C
# Exposting on port 80 so we can
# access via a reverse proxy for Dokku
ENV HOSTNAME "0.0.0.0"
EXPOSE 80
ENV PORT 80
# We're running in production
ENV APP_ENV "production"
# Start the app
CMD ["java", "-jar", "target/TextPurify-API.jar"]