Spaces:
Running
Running
File size: 904 Bytes
7eb360a 0adaf07 7eb360a 0adaf07 7eb360a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
FROM gitpod/workspace-node
# Chạy lệnh với quyền root
USER root
# Cài đặt các gói cần thiết
RUN apt-get update && apt-get install --no-install-recommends -y \
pcscd \
libpcsclite-dev \
python3 \
python3-setuptools \
python3-pycryptodome \
python3-pyscard \
python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN npm install -g http-server
# ENV PATH="/home/user/.local/bin:$PATH"
# COPY --chown=user ./requirements.txt requirements.txt
# COPY --chown=user . /app
USER 0
RUN useradd -u 1000 -m -s /bin/bash node
# Thêm user 1000 vào nhóm sudo
RUN usermod -aG sudo node
# Đổi mật khẩu của root thành 123456
RUN echo "root:123456" | chpasswd
RUN mkdir /app && chown 1000:1000 /app
WORKDIR /app
RUN chmod -R 777 /home/gitpod/ /home/gitpod/.gitconfig /home/gitpod/.config/
USER gitpod
CMD ["http-server", ".", "-p", "7860"] |