mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-06 23:21:16 +08:00
13 lines
331 B
Docker
13 lines
331 B
Docker
FROM node:20
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends rsync \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY docker/frontend-service-entrypoint.sh /usr/local/bin/frontend-service-entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/frontend-service-entrypoint.sh
|
|
|
|
CMD ["frontend-service-entrypoint.sh"]
|