mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-14 20:23:52 +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"]
|