Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
Falcon
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Walter Huang
Falcon
Commits
5e9d50ba
Commit
5e9d50ba
authored
Jun 24, 2025
by
Haohao Jiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add dockerfile & build shell
parent
4de9da3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
Dockerfile
Dockerfile
+18
-0
build.sh
build.sh
+3
-0
No files found.
Dockerfile
0 → 100644
View file @
5e9d50ba
# 使用官方指定版本的 bun 镜像
FROM
oven/bun:1.1.18
# 设置工作目录
WORKDIR
/app
# 拷贝项目文件
COPY
. .
# 安装依赖(建议使用 bun.lockb 加快构建)
RUN
bun
install
--frozen-lockfile
# 暴露端口(按需修改)
# EXPOSE 3000
# 默认启动命令(可根据你的项目改成 bun run dev / bun run start 等)
CMD
["bun", "start"]
\ No newline at end of file
build.sh
0 → 100644
View file @
5e9d50ba
docker build
-t
reg.i.strikingly.com/falcon:v0.1
.
docker push reg.i.strikingly.com/falcon:v0.1
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment