mirror of
https://github.com/hnhx/librex.git
synced 2025-01-26 10:43:05 -03:00
5 lines
228 B
Docker
5 lines
228 B
Docker
# Install Nginx with FastCGI enabled, optimizing its performance for serving content
|
|
RUN apk add nginx
|
|
|
|
# After executing the 'docker run' command, run the 'prepare.sh' script
|
|
CMD [ "/bin/sh", "-c", "docker/server/prepare.sh" ]
|