mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
12 lines
141 B
Docker
12 lines
141 B
Docker
FROM python:3.12.6-bookworm
|
|
|
|
EXPOSE 3001/udp
|
|
EXPOSE 3000/tcp
|
|
EXPOSE 3003
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["/app/exec-entrypoint.sh"]
|