Spaces:
Sleeping
Sleeping
File size: 273 Bytes
a96d5ea |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Use a base image with a Java runtime (OpenJDK)
FROM openjdk:11
# Set the working directory in the container
WORKDIR /app
# Copy your Java JAR file into the container
#COPY your_java_program.jar /app/
# Set the command to run your Java program
CMD ["java", "-version"]
|