Skip to content

Commit

Permalink
Restore missing Dockerfile (#5786)
Browse files Browse the repository at this point in the history
* Restore missing Dockerfile

* Remove wrong package-lock.json gitignore entry
  • Loading branch information
kaspersjo authored Sep 26, 2024
1 parent 95bea65 commit bde82ca
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,3 @@ rill-binary-sa.json
sysroot/
latest.txt
/web-common/coverage
package-lock.json
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# syntax = docker/dockerfile:1.1-experimental
FROM ubuntu

RUN apt-get update && apt-get install -y ca-certificates

COPY rill /usr/local/bin
RUN chmod 777 /usr/local/bin/rill

RUN groupadd -g 1001 rill \
&& useradd -m -u 1001 -s /bin/sh -g rill rill
USER rill

RUN rill runtime install-duckdb-extensions

ENTRYPOINT ["rill"]
CMD ["start"]

0 comments on commit bde82ca

Please sign in to comment.