mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 03:55:25 +00:00
15 lines
214 B
Docker
15 lines
214 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get update && apt-get install -y build-essential
|
|
|
|
RUN mkdir /app
|
|
COPY *.c /app
|
|
COPY *.h /app
|
|
COPY Makefile /app
|
|
COPY /public /app/public
|
|
|
|
WORKDIR /app
|
|
|
|
RUN make release
|
|
|
|
CMD ["./webserver.out"] |