chore: let there be initial files
All checks were successful
build-and-push / docker (push) Successful in 35s
All checks were successful
build-and-push / docker (push) Successful in 35s
This commit is contained in:
commit
ce6f988c20
25
.gitea/workflows/build-and-push.yaml
Normal file
25
.gitea/workflows/build-and-push.yaml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: build-and-push
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
-
|
||||||
|
name: Login to registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: dev.l1qu1d.net
|
||||||
|
username: ${{ secrets.PUSH_USER }}
|
||||||
|
password: ${{ secrets.PUSH_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Build and push
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
tags: dev.l1qu1d.net/l1qu1d-net/hiddencontainer
|
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
FROM alpine:3.20
|
||||||
|
|
||||||
|
RUN apk update && apk add tor
|
||||||
|
|
||||||
|
VOLUME /data
|
||||||
|
|
||||||
|
CMD ["tor", "-f", "/data/torrc"]
|
Loading…
Reference in New Issue
Block a user