fixed typos
parent
d61e70e96d
commit
5f280c7042
|
@ -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 \
|
||||||
|
|
|
@ -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) .
|
||||||
|
|
Loading…
Reference in New Issue