Files
rosetta-wss/build/Dockerfile

12 lines
364 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM eclipse-temurin:21-jre-alpine
WORKDIR /app
# Копируем рабочую директорию
COPY . .
# Открываем порт (может быть переопределён через ENV)
EXPOSE ${PORT:-3000}
# Запускаем приложение с портом из окружения
CMD ["sh", "-c", "java -jar app.jar ${PORT:-3000}"]