FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fibjs/docker/Dockerfile.dev at dev · fibjs/fibjs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
fibjs
/
fibjs
Public
Notifications
You must be signed in to change notification settings
Fork
302
Star
3.1k
Code
Issues
36
Pull requests
1
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
fibjs
/
docker
/
Dockerfile.dev
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (16 loc) · 558 Bytes
Breadcrumbs
fibjs
/
docker
/
Dockerfile.dev
Copy path
File metadata and controls
23 lines (16 loc) · 558 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Copy fibjs binaries from build context
ARG FIBJS_BINARY
COPY binaries/ /tmp/binaries/
# Copy the correct binary based on build arg
RUN cp /tmp/binaries/${FIBJS_BINARY} /usr/local/bin/fibjs
# Make it executable and clean up
RUN chmod +x /usr/local/bin/fibjs && \
rm -rf /tmp/binaries
# Ensure PATH includes /usr/local/bin
ENV PATH="/usr/local/bin:${PATH}"
CMD ["fibjs"]
Back
|
FazBrowse Home
|
New Git URL