mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 05:11:46 +03:00
daad76b5e2
Some other commits have been squashed in: meta: remove user declarations for glob action This is a tricky problem. SSH needs UID 0 to exist, and intuitively it does (root), but we can't enforce that when GitHub is running our container. Specifying "USER 0:0" in the actions Dockerfile doesn't cut it. Instead it seems best to try and construct a shadow-utils setup on the underlying Docker image. meta: target glob workflow at release/next-js
5 lines
110 B
Docker
5 lines
110 B
Docker
FROM jaredtobin/janeway:v0.13.1
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
EXPOSE 22/tcp
|
|
ENTRYPOINT ["/entrypoint.sh"]
|