first commit
This commit is contained in:
commit
0065c017e4
496 changed files with 54265 additions and 0 deletions
13
backend/Dockerfile
Normal file
13
backend/Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM alpine:latest
|
||||
ARG PB_VERSION=0.36.7
|
||||
|
||||
RUN apk add --no-cache \
|
||||
unzip \
|
||||
ca-certificates
|
||||
|
||||
ADD https://github.com/pocketbase/pocketbase/releases/download/v${PB_VERSION}/pocketbase_${PB_VERSION}_linux_amd64.zip /tmp/pb.zip
|
||||
RUN unzip /tmp/pb.zip -d /pb/
|
||||
|
||||
EXPOSE 8090
|
||||
VOLUME /pb/pb_data
|
||||
CMD ["/pb/pocketbase", "serve", "--http=0.0.0.0:8090"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue