Skip to content
Snippets Groups Projects
Commit 86be68ba authored by Fabian Nuraddin Alexander Gabel's avatar Fabian Nuraddin Alexander Gabel :speech_balloon:
Browse files

add docker file

parent f3f1dd3b
No related branches found
No related tags found
No related merge requests found
# Download base image ubuntu 20.04
FROM ubuntu:20.04
# LABEL about the custom image
LABEL maintainer="fabian.gabel@tuhh.de"
LABEL version="0.1"
LABEL description="This is custom Docker Image for \
Website deployment with bash preprocessor and pandoc."
# Disable Prompt During Packages Installation
ARG DEBIAN_FRONTEND=noninteractive
# Update Ubuntu Software repository
RUN apt update
# Install nginx, php-fpm and supervisord from ubuntu repository
RUN apt -y install pandoc
CMD /bin/bash
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment