17 lines
313 B
Docker
17 lines
313 B
Docker
# Dockerfile for kotec website service
|
|
FROM nginx:alpine
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
# Copy website files from kotec.pl directory
|
|
COPY kotec.pl/ .
|
|
|
|
# Provide explicit nginx config listening on 8081
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose port
|
|
EXPOSE 8081
|
|
|
|
# Nginx will start automatically
|
|
|