mirror of
https://github.com/tencentmusic/cube-studio.git
synced 2025-01-06 13:34:44 +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/
|