Dockerize auth service

This commit is contained in:
2024-08-28 14:24:16 +02:00
parent 3dba9b23dc
commit 27cab1505c
4 changed files with 54 additions and 7 deletions

View File

@ -0,0 +1,8 @@
FROM alpine:latest
RUN mkdir /app
COPY authApp /app
CMD ["/app/authApp"]