Fix versioning
This commit is contained in:
parent
f7bb3b5bc9
commit
6ebdb0b886
3 changed files with 3 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
FROM node:14 AS build
|
FROM node:14 AS build
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy package.json and package-lock.json
|
# Copy package.json and package-lock.json
|
||||||
COPY .env ./.env
|
COPY .env ./.env
|
||||||
COPY package*.json ./
|
COPY package*.json ./
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ const minutesData: MinuteEntry[] = [
|
||||||
fileUrl: '/minutes/minutes-08062024.pdf',
|
fileUrl: '/minutes/minutes-08062024.pdf',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const Minutes: React.FC = () => {
|
const Minutes: React.FC = () => {
|
||||||
const [sortColumn, setSortColumn] = useState<keyof MinuteEntry>('date');
|
const [sortColumn, setSortColumn] = useState<keyof MinuteEntry>('date');
|
||||||
const [sortDirection, setSortDirection] = useState<'asc' | 'desc'>('desc');
|
const [sortDirection, setSortDirection] = useState<'asc' | 'desc'>('desc');
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ services:
|
||||||
- "801:801"
|
- "801:801"
|
||||||
environment:
|
environment:
|
||||||
- NODE_ENV=production
|
- NODE_ENV=production
|
||||||
- VERSION=1.8
|
- VERSION=1.9
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
networks:
|
networks:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue