This website requires JavaScript.
Explore
Help
Register
Sign In
Mirrors
/
dokku
Watch
1
Star
0
Fork
0
You've already forked dokku
mirror of
https://github.com/dokku/dokku.git
synced
2026-02-24 04:00:36 +01:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
4c16f7df8258c24112e61ba1afce12e93c72b026
dokku
/
tests
/
apps
/
python
/
expose.Dockerfile
10 lines
101 B
Docker
Raw
Normal View
History
Unescape
Escape
tests: update python version used in test apps
2024-09-29 03:23:13 -04:00
FROM
python:3.12.6-bookworm
feat: write auto-detected port mappings during a deploy During an app build, we now auto-detect ports based on the source code. This is usually http:80:5000, with Dockerfile-based deploys having their ports extracted from the docker image or Dockerfile. Additionally, we add an https:443 mapping for any detected http:80 mapping when there is an ssl certificate, and all http port mappings are transformed to https mappings for Dockerfile-based deploys. While the ports aren't currently consumed, a future refactor will provide the ability to fallback to the new detected ports when there is no user-specified port mapping.
2023-07-16 03:35:40 -04:00
EXPOSE
3001/udp
EXPOSE 3000/tcp
EXPOSE
3003
COPY
. /app
WORKDIR
/app
Reference in New Issue
Copy Permalink