mirror of
https://github.com/YuWanTingbb/unofficial-gpt4.git
synced 2025-10-14 22:27:21 +00:00
7 lines
131 B
Docker
7 lines
131 B
Docker
FROM container-registry.oracle.com/os/oraclelinux:8-slim
|
|
|
|
ARG APP_FILE
|
|
EXPOSE 8080
|
|
|
|
COPY target/${APP_FILE} app
|
|
ENTRYPOINT ["/app"] |