auto config import

This commit is contained in:
2025-06-22 03:22:50 +02:00
parent 9b078254ac
commit 459873f0e5
3 changed files with 26 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
FROM node:22-alpine
# Install netcat for port checking
RUN apk add --no-cache netcat-openbsd
# Set working directory
WORKDIR /opt/app
@@ -15,8 +18,11 @@ COPY . .
# Build the application
RUN npm run build
# Make startup script executable
RUN chmod +x start.sh
# Expose port
EXPOSE 1337
# Start the application
CMD ["npm", "start"]
# Start the application with the startup script
CMD ["./start.sh"]