fix: aktualisiere das Docker-Image auf v0.1.3 und passe die Verzeichnispfade im Dockerfile und docker-compose.yml an
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 39s

This commit is contained in:
Matthias Hinrichs
2025-11-23 01:22:38 +01:00
parent fe774f8009
commit 2061bb29c0
2 changed files with 8 additions and 6 deletions
+6 -4
View File
@@ -1,8 +1,10 @@
FROM docker.hnrx.net/alpine:latest
RUN mkdir /config
# Create application directory
RUN mkdir -p /app/config
WORKDIR /root/
# Set working directory
WORKDIR /app/
# Copy the compiled binary from the builder stage
COPY manage-servers .
@@ -10,9 +12,9 @@ COPY manage-servers .
# Copy the index.html file for the web server
COPY index.html .
# Copy the servers.json file
# COPY servers.json .
RUN ls -la /app/
# Make the binary executable
RUN chmod +x ./manage-servers
# Expose the port the web server listens on