feat: Populate repo

This commit is contained in:
2023-03-29 14:02:05 +02:00
commit 28bec5ebb8
168 changed files with 17860 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM gcc:latest
WORKDIR /c-websocket
COPY . .
RUN apt-get update && \
apt-get install -y libjson-c-dev default-libmysqlclient-dev
CMD [ "make", "clean", "run" ]
EXPOSE 8080