fling/container/Dockerfile
Armin Friedl c9fa0c023e
Some checks failed
continuous-integration/drone/push Build is failing
Prepare deployment
2020-06-11 22:56:31 +02:00

13 lines
285 B
Docker

FROM debian:stable
RUN ls -al
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install -y nginx openjdk-11-jre && \
mkdir -p /var/www/fling && \
mv web/fling/build/* /var/www/fling/ && \
rm -fr web \
COPY ./etc/nginx/conf.d /etc/nginx/conf.d
ENTRYPOINT ["/bin/sh"]