Add Earthfile and update version
This commit is contained in:
parent
bca3049c27
commit
df28d3c411
26
Earthfile
Normal file
26
Earthfile
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
VERSION 0.7
|
||||||
|
|
||||||
|
docker-multi:
|
||||||
|
BUILD --platform linux/amd64 --platform linux/arm64 +docker
|
||||||
|
|
||||||
|
build:
|
||||||
|
FROM node:lts
|
||||||
|
WORKDIR /build
|
||||||
|
COPY . .
|
||||||
|
RUN npm config set registry https://npm.hibas123.de
|
||||||
|
RUN npm install
|
||||||
|
RUN npm run build
|
||||||
|
SAVE ARTIFACT dist secure_notes_files
|
||||||
|
|
||||||
|
docker:
|
||||||
|
FROM busybox:1.36
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY --platform=linux/amd64 +build/secure_notes_files /app/
|
||||||
|
|
||||||
|
|
||||||
|
CMD ["busybox", "httpd", "-f", "-v", "-p", "3001", "-h", "/app"]
|
||||||
|
|
||||||
|
ARG EARTHLY_TARGET_TAG
|
||||||
|
ARG TAG=$EARTHLY_TARGET_TAG
|
||||||
|
SAVE IMAGE --push git.hibas.dev/openserver/secure_notes:$TAG
|
@ -1,8 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@hibas123/securenotes2",
|
"name": "@hibas123/securenotes2",
|
||||||
"version": "2.0.0-alpha.1",
|
"version": "2.0.2",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "parcel build src/index.html",
|
"build": "parcel build src/index.html",
|
||||||
"dev": "parcel src/index.html"
|
"dev": "parcel src/index.html"
|
||||||
|
@ -72,7 +72,7 @@ export class Footer extends Component<
|
|||||||
<span>
|
<span>
|
||||||
Welcome <b>{Notes.name}</b>
|
Welcome <b>{Notes.name}</b>
|
||||||
</span>
|
</span>
|
||||||
<span style="color: lightgrey;">v1.7</span>
|
<span style="color: lightgrey;">v2.0.2</span>
|
||||||
</footer>
|
</footer>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user