File size: 574 Bytes
48756f9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6be81b0
d6f033c
581caef
a7fe123
581caef
48756f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:22.04

# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user

# Switch to the "user" user
USER user

# Set home to the user's home directory
ENV HOME=/home/user \
    FILE_SYNC=$FILE_SYNC\
	PATH=/home/user/.local/bin:$PATH

# Set the working directory to the user's home directory
WORKDIR $HOME/tinyproxy

COPY --chown=user . $HOME/tinyproxy

RUN chmod +x $HOME/tinyproxy/tinyproxy
RUN touch $HOME/tinyproxy/tinyproxy.log

CMD cd $HOME/tinyproxy && ls -lh && pwd && ./tinyproxy -c ./tinyproxy.conf && tail -f ./tinyproxy.log

EXPOSE 8888