fixed typos

main
Linux User 2021-02-18 10:23:44 +01:00
parent d61e70e96d
commit 5f280c7042
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ FROM alpine:3.13
COPY entrypoint.sh /entrypoint COPY entrypoint.sh /entrypoint
RUN chmod +x /entrypoint RUN chmod +x /entrypoint && \
addgroup --gid 10001 tor && \ addgroup --gid 10001 tor && \
adduser \ adduser \
--uid 10000 \ --uid 10000 \

View File

@ -3,8 +3,8 @@ IMG_NAME = tor
.PHONY: build build-nc .PHONY: build build-nc
build: Dockerfile build: Dockerfile entrypoint.sh
docker build -t $(USERNAME)/$(IMG_NAME) . docker build -t $(USERNAME)/$(IMG_NAME) .
build-nc: Dockerfile build-nc: Dockerfile entrypoint.sh
docker build --no-cache -t $(USERNAME)/$(IMG_NAME) . docker build --no-cache -t $(USERNAME)/$(IMG_NAME) .