9 lines
155 B
Docker
9 lines
155 B
Docker
FROM oven/bun:latest
|
|
|
|
ENV TZ="Europe/Madrid"
|
|
|
|
# Install additional OS packages.
|
|
RUN apt-get update && apt-get install -y curl git
|
|
|
|
# Use node user
|
|
USER bun |