Reviewed-on: #5
@ -0,0 +1,9 @@
FROM alpine:3.18.4
RUN mkdir /app
WORKDIR /app
COPY Blog .
COPY conf .
EXPOSE 8088
RUN chmod 777 Blog
CMD ./Blog
#END