From 74d9456705a31f3bfcbc7b7c8c1c4b8e1879f837 Mon Sep 17 00:00:00 2001 From: Alexey-Sagaydak Date: Sun, 22 Sep 2024 00:23:39 +0700 Subject: [PATCH] bug fixes in Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c743992..1c36f06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 RUN apt-get update && apt-get install -y libboost-all-dev COPY ./server/build/libhv-http /usr/local/bin/http-server +WORKDIR /usr/local/bin/ + EXPOSE 7777 CMD ["http-server"]