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
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
# Copy package.json and package-lock.json
|
||||
COPY .env ./.env
|
||||
COPY package*.json ./
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ const minutesData: MinuteEntry[] = [
|
|||
fileUrl: '/minutes/minutes-08062024.pdf',
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
const Minutes: React.FC = () => {
|
||||
const [sortColumn, setSortColumn] = useState<keyof MinuteEntry>('date');
|
||||
const [sortDirection, setSortDirection] = useState<'asc' | 'desc'>('desc');
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ services:
|
|||
- "801:801"
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- VERSION=1.8
|
||||
- VERSION=1.9
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue