woj-server/resource/runner/scripts/ubuntu-run.Dockerfile

12 lines
278 B
Docker
Raw Normal View History

2023-08-11 18:54:00 +08:00
FROM woj/ubuntu-full:latest AS builder
FROM docker.io/library/ubuntu:22.04
2024-01-04 18:12:00 +08:00
WORKDIR /woj
2023-08-11 18:54:00 +08:00
RUN mkdir -p /woj/framework/scripts
COPY --from=builder /woj/framework/scripts/woj_launcher /woj/framework/scripts/
2024-01-01 21:56:26 +08:00
2024-01-04 18:12:00 +08:00
# Add User
RUN groupadd -g 1000 woj && useradd -M -u 1000 -g 1000 woj