40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!--
|
|
title: 我的Dockerfile
|
|
description:
|
|
published: true
|
|
date: 2024-01-02T12:30:31.493Z
|
|
tags: docker, 技术, code, 代码
|
|
editor: ckeditor
|
|
dateCreated: 2023-04-03T09:10:22.169Z
|
|
-->
|
|
|
|
<h1>my-code-server</h1>
|
|
<pre><code class="language-plaintext">FROM lscr.io/linuxserver/code-server:latest
|
|
RUN apt-get update \
|
|
&& apt install -y npm \
|
|
&& apt install -y git \
|
|
&& npm install -g n \
|
|
&& n latest \
|
|
&& npm install -g yarn \</code></pre>
|
|
<h1>ocer-world</h1>
|
|
<pre><code class="language-plaintext">FROM node:latest
|
|
RUN npm install -g hexo-cli \
|
|
&& git clone https://gitea.ocer.cc/overcast404/ocer-world.git \
|
|
&& cd ocer-world \
|
|
&& npm install
|
|
CMD cd ocer-world \
|
|
&& git pull \
|
|
&& npm install \
|
|
&& hexo server -p 5000</code></pre>
|
|
<h1>ocer-world-new</h1>
|
|
<pre><code class="language-plaintext">FROM node:latest
|
|
RUN npm install -g hexo-cli \
|
|
&& git clone https://gitea.ocer.cc/overcast404/ocer-world.git \
|
|
&& cd /ocer-world/land \
|
|
&& npm install
|
|
CMD cd ocer-world \
|
|
&& git pull \
|
|
&& cd land \
|
|
&& npm install \
|
|
&& hexo server -p 5000</code></pre>
|