mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2024-12-21 06:19:31 +08:00
5 lines
154 B
Docker
5 lines
154 B
Docker
FROM nginx:latest
|
|
COPY build/ /usr/share/nginx/html/
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
RUN chmod -R 777 /usr/share/nginx/html/ |