RESTfulMC/Dockerfile

22 lines
403 B
Docker
Raw Normal View History

2024-04-06 21:34:24 -07:00
FROM maven:3.8.5-openjdk-17-slim
2024-04-06 21:27:09 -07:00
2024-04-07 23:29:41 -07:00
# Install OpenSSL
RUN apt-get update && apt-get install -y openssl
2024-04-06 21:42:54 -07:00
# Set the working directory
WORKDIR /home/container
2024-04-06 21:27:09 -07:00
# Copy project files
COPY . .
# Build the app
RUN mvn clean package
# 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
# Start the app
2024-04-06 21:55:21 -07:00
CMD ["java", "-jar", "target/RESTfulMC.jar"]