mirror of
https://git.imnavajas.es/jjimenez/printhub.git
synced 2026-01-12 16:38:46 +00:00
9 lines
170 B
Docker
9 lines
170 B
Docker
FROM eclipse-temurin:24-jdk
|
|
|
|
# Instala Maven si lo necesitas (si usas ./mvnw, esto es opcional)
|
|
RUN apt-get update && apt-get install -y maven
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 8080
|