mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-15 04:33:51 +00:00
8 lines
160 B
Docker
8 lines
160 B
Docker
|
# Special docker file for pre-built images
|
||
|
FROM nginx:1.27.2-alpine
|
||
|
|
||
|
COPY dist/ /etc/nginx/html
|
||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
EXPOSE 80
|
||
|
CMD ["nginx"]
|