chore: add docker

This commit is contained in:
Arthur Khachaturov 2024-07-20 01:32:44 +03:00
parent eb5a369502
commit 936b34cc2f
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
2 changed files with 16 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM debian:stable-slim
RUN apt-get update && apt-get install socat file -y
WORKDIR /opt/app
COPY src/ /opt/app/
EXPOSE 80
CMD /opt/app/main.sh run

5
docker-compose.yml Normal file
View file

@ -0,0 +1,5 @@
services:
httb:
build: .
ports:
- 8081:80