File size: 445 Bytes
e7b2033 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Use an official ubuntu runtime as a parent image
FROM ubuntu:18.04
# Install needed packages and clear cache afterwards
RUN apt update \
&& apt install -y libmicrohttpd12 \
&& apt autoremove -y \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory to /conc
WORKDIR /conc
# Copy the current directory contents into the container at /conc
COPY conc .
# Make port 80 available to the world outside this container
EXPOSE 80
|